the same stuff in Java works: ``` @Configuration @...
# announcements
c
the same stuff in Java works:
Copy code
@Configuration
@EnableAuthorizationServer
public class OAuth2ConfigJava extends AuthorizationServerConfigurerAdapter {
	private final AuthenticationManager authManager;

	@Autowired
	public OAuth2ConfigJava(AuthenticationManager authManager) {
		super();
		this.authManager = authManager;
	}
// overrides
}