Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなコードの違いを知りたいです。
class MyClass { @Autowired MyService myService; }
そして次のようなコード:
class MyClass { MyService myService; @Required public void setMyService(MyService val) { this.myService = val; } }